You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.2 KiB
78 lines
2.2 KiB
'use client'
|
|
|
|
import { useState, useEffect, useCallback } from 'react'
|
|
import httpBrowserClient from '@/lib/httpBrowserClient'
|
|
import { useSession } from 'next-auth/react'
|
|
import { redirect } from 'next/navigation'
|
|
import { Loader, CheckCircle } from 'lucide-react'
|
|
|
|
export default function CheckoutPage({ params }) {
|
|
const [error, setError] = useState<string | null>(null)
|
|
|
|
const planName = params.planName as string
|
|
|
|
const { data: session } = useSession()
|
|
|
|
const initiateCheckout = useCallback(
|
|
async (retries = 2) => {
|
|
try {
|
|
const response = await httpBrowserClient.post('/billing/checkout', {
|
|
planName,
|
|
})
|
|
|
|
if (response.data?.redirectUrl) {
|
|
window.location.href = response.data?.redirectUrl
|
|
} else {
|
|
throw new Error('No redirect URL found')
|
|
}
|
|
} catch (error) {
|
|
if (retries > 0) {
|
|
initiateCheckout(retries - 1)
|
|
} else {
|
|
setError('Failed to create checkout session. Please try again.')
|
|
console.error(error)
|
|
}
|
|
}
|
|
},
|
|
[planName]
|
|
)
|
|
|
|
useEffect(() => {
|
|
initiateCheckout()
|
|
}, [initiateCheckout])
|
|
|
|
if (!session?.user) {
|
|
return redirect(`/login?redirect=${window.location.href}`)
|
|
}
|
|
|
|
if (error) {
|
|
return (
|
|
<div className='flex flex-col items-center justify-center h-screen'>
|
|
<div className='text-red-500'>{error}</div>
|
|
<button
|
|
onClick={() => {
|
|
setError(null)
|
|
initiateCheckout()
|
|
}}
|
|
className='mt-4 px-4 py-2 bg-brand-500 text-white rounded hover:bg-brand-600'
|
|
>
|
|
Try Again
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className='flex flex-col items-center justify-center min-h-[80vh] bg-gray-100 p-6 rounded-lg shadow-lg'>
|
|
<Loader className='animate-spin mb-4 text-brand-500' size={48} />
|
|
<h2 className='text-2xl font-bold text-gray-800 mb-2'>Hang Tight!</h2>
|
|
<p className='text-lg text-gray-600 mb-4'>
|
|
We're processing your order. This won't take long!
|
|
</p>
|
|
<CheckCircle className='text-green-500 mb-2' size={32} />
|
|
<span className='text-lg font-semibold'>
|
|
Thank you for your patience!
|
|
</span>
|
|
</div>
|
|
)
|
|
}
|